home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
EDUCATE
/
TUTORII.ARJ
/
BGOTO.DAT
< prev
next >
Wrap
Text File
|
1991-11-29
|
525b
|
17 lines
Explanation of the GOTO command. It is a
BATCH command.
This command tells the batch file to go
to a certain label in the batch file, and
possibly skip a part of the program.
Example:
To let your batch file skip something
and go on somewhere else use this
type of command in your BAT file:
Echo off
format a: /s
if not errorlevel 1 GOTO end
echo An error ocurred during
formatting
:end
echo End of batch prog.